home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / GXErrors.idl < prev    next >
Text File  |  1996-05-01  |  1KB  |  67 lines

  1. /*
  2.      File:        GXErrors.idl
  3.  
  4.      Contains:    QuickDraw GX error constants and debugging routines
  5.  
  6.      Version:    Technology:    Quickdraw GX 1.1
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __GXERRORS_IDL__
  19. #define __GXERRORS_IDL__
  20.  
  21. #include <somobj.idl>
  22. #include <somcls.idl>
  23.  
  24. #ifndef __CONDITIONALMACROS_IDL__
  25. #include <ConditionalMacros.idl>
  26. #endif
  27. #ifndef __MIXEDMODE_IDL__
  28. #include <MixedMode.idl>
  29. #endif
  30. #ifndef __GXTYPES_IDL__
  31. #include <GXTypes.idl>
  32. #endif
  33.  
  34. #ifdef __SOMIDL__
  35.  
  36. typedef long                    gxGraphicsError;
  37.  
  38. typedef long                    gxGraphicsWarning;
  39.  
  40. typedef long                    gxGraphicsNotice;
  41.  
  42. #if FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE
  43. typedef OpaquePtr gxUserErrorProcPtr;
  44. typedef OpaquePtr gxUserErrorUPP;
  45. typedef OpaquePtr gxUserWarningProcPtr;
  46. typedef OpaquePtr gxUserWarningUPP;
  47. typedef OpaquePtr gxUserNoticeProcPtr;
  48. typedef OpaquePtr gxUserNoticeUPP;
  49. typedef gxUserErrorProcPtr        gxUserErrorFunction;
  50.  
  51. typedef gxUserWarningProcPtr    gxUserWarningFunction;
  52.  
  53. typedef gxUserNoticeProcPtr        gxUserNoticeFunction;
  54.  
  55. #endif
  56. typedef long                    gxValidationLevel;
  57.  
  58. typedef long                    gxDrawError;
  59.  
  60. #if FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE
  61. #endif
  62.  
  63. #endif /* __SOMIDL__ */
  64.  
  65. #endif /* __GXERRORS_IDL__ */
  66.  
  67.